home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / PRGMMING / ASMWIZ.ZIP / TCREATE.BAT < prev   
Encoding:
DOS Batch File  |  1994-11-03  |  435 b   |  13 lines

  1. @echo off
  2. echo off
  3. echo   This batch file will assemble and link the EXAMPLE.ASM file using
  4. echo   TASM and TLINK.  If you are using a different assembler and/or linker,
  5. echo   this batch file must be changed to reflect the names of your assembler
  6. echo   and linker.
  7. echo   --------------------------------------------------------------------
  8. pause
  9. tasm example;
  10. tlink example,,nul,asmwiz;
  11. erase example.obj
  12. execom example
  13.